home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
AUDIO
/
MIDICOM2
/
MIDIMON.DPR
< prev
next >
Wrap
Text File
|
1996-04-30
|
471b
|
22 lines
{ $Header: G:/delphi/midi/vcs/midimon.dpr 1.2 30 Apr 1996 19:05:38 DAVEC $ }
{ Written by David Churcher <dchurcher@cix.compulink.co.uk>,
released to the public domain. }
program Midimon;
uses
Forms,
Midimonp in 'MIDIMONP.PAS' {Form1},
MIDIIn in 'MIDIIN.PAS',
Circbuf in 'CIRCBUF.PAS',
midiout in 'MIDIOUT.PAS',
Monprocs in 'MONPROCS.PAS';
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.